home *** CD-ROM | disk | FTP | other *** search
/ Aminet 37 / Aminet 37 (2000)(Schatztruhe)[!][Jun 2000].iso / Aminet / dev / lang / sofa.lha / sofa / smalleiffel / lib_se / real_constant.e < prev    next >
Text File  |  2000-03-25  |  3KB  |  104 lines

  1. --          This file is part of SmallEiffel The GNU Eiffel Compiler.
  2. --          Copyright (C) 1994-98 LORIA - UHP - CRIN - INRIA - FRANCE
  3. --            Dominique COLNET and Suzanne COLLIN - colnet@loria.fr
  4. --                       http://SmallEiffel.loria.fr
  5. -- SmallEiffel is  free  software;  you can  redistribute it and/or modify it
  6. -- under the terms of the GNU General Public License as published by the Free
  7. -- Software  Foundation;  either  version  2, or (at your option)  any  later
  8. -- version. SmallEiffel is distributed in the hope that it will be useful,but
  9. -- WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  10. -- or  FITNESS FOR A PARTICULAR PURPOSE.   See the GNU General Public License
  11. -- for  more  details.  You  should  have  received a copy of the GNU General
  12. -- Public  License  along  with  SmallEiffel;  see the file COPYING.  If not,
  13. -- write to the  Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  14. -- Boston, MA 02111-1307, USA.
  15. --
  16. class REAL_CONSTANT
  17.    --
  18.    -- For Manifest Constant REAL.
  19.    --
  20.  
  21. inherit BASE_TYPE_CONSTANT;
  22.  
  23. creation make
  24.  
  25. feature
  26.  
  27.    to_string: STRING;
  28.          -- Cleanly written view of the constant (ANSI C compatible).
  29.  
  30.    c_simple: BOOLEAN is true;
  31.  
  32.    is_static: BOOLEAN is false;
  33.  
  34.    static_result_base_class: BASE_CLASS is
  35.       do
  36.          Result := small_eiffel.get_class(as_real);
  37.       end;
  38.  
  39.    static_value: INTEGER is
  40.       do
  41.       end;
  42.  
  43.    compile_to_c is
  44.       do
  45.          cpp.put_string(to_string);
  46.       end;
  47.  
  48.    compile_target_to_jvm, compile_to_jvm is
  49.       do
  50.          code_attribute.opcode_push_as_float(to_string);
  51.       end;
  52.  
  53.    jvm_branch_if_false: INTEGER is
  54.       do
  55.       end;
  56.  
  57.    jvm_branch_if_true: INTEGER is
  58.       do
  59.       end;
  60.  
  61.    compile_to_jvm_into(dest: TYPE): INTEGER is
  62.       do
  63.          if dest.is_real then
  64.             code_attribute.opcode_push_as_float(to_string);
  65.             Result := 1;
  66.          elseif dest.is_double then
  67.             code_attribute.opcode_push_as_double(to_string);
  68.             Result := 2;
  69.          else
  70.             Result := standard_compile_to_jvm_into(dest);
  71.          end;
  72.       end;
  73.  
  74.    result_type: TYPE_REAL is
  75.       local
  76.          unknown_position: POSITION;
  77.       once
  78.          !!Result.make(unknown_position);
  79.       end;
  80.  
  81. feature {EIFFEL_PARSER}
  82.  
  83.    unary_minus is
  84.       do
  85.          to_string.add_first('-');
  86.       end;
  87.  
  88. feature {NONE}
  89.  
  90.    make(sp: like start_position; ts: like to_string) is
  91.       require
  92.          not sp.is_unknown;
  93.          ts /= Void
  94.       do
  95.          start_position := sp;
  96.          to_string := ts;
  97.       ensure
  98.          start_position = sp;
  99.          to_string = ts
  100.       end;
  101.  
  102. end -- REAL_CONSTANT
  103.  
  104.